home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Bus / M / MouseDroppings Hints.cpt / Mouse Droppings Hints / Mouse Droppings Hint Folder / 1988 Hints / 01_88 MacHint next >
Encoding:
Text File  |  1990-11-20  |  8.5 KB  |  135 lines

  1. Data Bases
  2.  
  3. Changing Data Bases. If you are importing files from one data base to another via a text file, it is smart to add 2-3 blank fields in the target data base.  That way, if some extra tabs sneak their way into your text, you won't lose fields during the transfer. 
  4.  
  5. DiskTop
  6.  
  7. Blindingly Fast File Copying. If you are drumming your fingers while files are copying, try DiskTop DA. It is the fastest way to copy a file available on the Mac.
  8.  
  9. Excel
  10.  
  11. Headers for Excel. Washington Apple Pi suggests you always place the following into your page header, so the date, title and time will appear in the printout: &L&T&C&F&R&D
  12.  
  13. Every Excel User Should… If you use Excel and are struggling with adding columns or rows between other columns or rows, here's the easy way:
  14. To place a new column between C and D, place the cursor between the C and the D in the column headings, move it right until the "grow width" cursor changes to a hollow cross. Hold down the Option key and click the mouse. Presto, new column. To add a row between rows 3 and 4, place the cursor between 3 and 4, hold down the Option key and click the mouse.
  15.  
  16. FullPaint
  17.  
  18. The Disappearing Act. In FullPaint, to get rid of just the patterns menu, leaving the tools menu in place, use Command/Option.T. It's a toggle, so use it again to get the patterns back.
  19.  
  20. General
  21.  
  22. Check Before Plugging In. If you take your Mac to weird places, get an $8 outlet tester from Radio Shack and check out the outlet before plugging your Mac in. (Thanks U of Utah MUG.)
  23.  
  24. HyperCard
  25.  
  26. A Way to Leave DAs Open in HyperCard. You may have heard that you can't use DAs with HyperCard. Wrong! You may have also heard that you have to close the DA to get back to HyperCard. Also wrong!
  27. First, HyperCard is programmed to be the backmost window, which is why there is a problem.  The DA cannot go behind HyperCard. So try this. Open Art Grabber+ (for instance), Copy something. Now tear off the Tools or Patterns menu. 
  28. If you look at the Art Grabber+ title bar, you will see that it is no longer active. You can now Paste into HyperCard. Click in Art Grabber+ and it becomes active again. Click on the torn off menu and you are back to HyperCard. This also works with Canvas DA, DeskPaint, Artisto and CheapPaint, among other DAs.
  29.  
  30. Forsaking HyperCard… If you entered an application from HyperCard, but you want to return to the Finder, hold down the Option key as you quit the application.
  31.  
  32. How To Lose a Stack. To lose a HyperCard stack, set a password for it. Now Quit without checking private access. Later, return to this dialog box and check it. The password will be trashed and you can never get into that stack again. (Thanks, Andrew Wulff of Mouse Times, Goleta, Calif.)
  33.  
  34. ICONs for HyperCard. There are several ways to add to the ICONs available for buttons in HyperCard. One of the easiest is Icon Maker DA. When invoked, an ICON-size square appears on the screen. Simply position the square over the ICON, ICN# or artwork which you wish to make an ICON resource out of. 
  35. Click the mouse and a dialog box appears. Select HyperCard (or a specific stack, if you only need the ICON there) and press Open. The ICON will be added to your stack (or to HyperCard's collection of ICONs). 
  36. If you want a copy of the ICON in it's own separate document, select New in IconMaker and create a dog-eared document file with the ICON in it.
  37. By the way, if you need an ICN#, not an ICON, for something, hold down the Command key while clicking the mouse on your selected artwork.
  38.  
  39. Don't Sort! You don't need to sort often in HyperCard, since retrieving is so fast. But if you MUST sort, here's a button to get it done fast:
  40. on mouseUp
  41.     set lockScreen to true     
  42. -- keeps the screen frozen
  43.     repeat for number of cards
  44.         convert date field to seconds 
  45. -- use name of your date field
  46.         sort by date field
  47.         convert date field to long date     
  48. -- or whatever format you use
  49.     end repeat
  50.     set lockScreen to false     
  51. -- not needed but nice to feel "safe"
  52. end mouseUp
  53.  
  54. This button comes to us courtesy of Mouse Times, Goleta, Calif., home of David Dunham of DA/Utility fame.
  55.  
  56. An About Box. Do you need an "About Box" for your stack. One that shows your name, the price of your shareware, etc.? Don't want to waste a whole card for it? Here's what Andrew Gilmartin  of Mouse Times of Goleta, Calif., suggests -- a button which displays an icon for the About Box, but changes to the About Box itself when clicked. The script is:
  57.  
  58. on mouseUp
  59.     put the rect of me into buttonWhere 
  60. -- remember where the button was
  61.     put the icon of me into buttonIcon 
  62. -- remember where the icon was
  63.     put the style of me into buttonStyle -- remember what the style was
  64. -- set the button to display simple¬ About Box
  65.     set lockScreen to true
  66.     set rect of me to 46, 136, 466, 206
  67. -- size & position of About Box
  68.     set icon of me to 0
  69. -- remove the icon
  70.     set style of me to shadow 
  71. -- give it an appropriate style
  72.     set showName of me to true 
  73. -- show the message
  74.     set lockScreen to false 
  75. -- update the screen
  76. -- wait for a mouse click to clear the¬ About Box
  77.     repeat until the mouseClick
  78.     end repeat
  79. -- reset the button
  80.     set lockScreen to true 
  81. -- turn off screen updating
  82.     set icon of me to buttonIcon 
  83. -- reset the icon
  84.     set showName of me to false 
  85. -- hide About message
  86.     set style of me to buttonStyle 
  87. -- make button transparent
  88.     set rect of me to buttonWhere 
  89. -- reset the size & position
  90.     set lockScreen to false 
  91. -- update the screen
  92. end mouseUp
  93.  
  94. To Protect a Stack -- or Not. Don't protect HyperCard stacks right now. We are all in a learning process, and you are preventing "the rest of us" from learning how to do things in HyperTalk. Besides that, 'anyone who is really intent on looking into your stack can use Stackware Detective or one of the Script Reader stacks to decipher what you have done. 
  95.  
  96. Cheaper Than Goodman's Book -- Better Than Apple's. If you didn't get enough help out of Apple's HyperCard manual (few of us did), and you don't have $29.95 to spring for Goodman's "Complete HyperCard Handbook," open up the Help files. Bill Atkinson recommends it.
  97. One essential move is to print out the Help stack. If you use half-size cards you get eight to a sheet and it takes 52 sheets. 
  98.  
  99. Sometimes When You Read the Manual… If you read page 42 in the MacDraw manual, you will find that the Enter key takes you to the pointer tool. Handy!
  100.  
  101. Keyboard
  102.  
  103. Keyboard First Aid. What if you lose the use of a key in the middle of a job?  A temporary solution is to have QuickKeys assign an alias key which will access the missing letter. Another solution is to use a "pseudo key." For instance, if the 'g' key stops working, use the backslash (\) whenever a g is needed. Now use the Change menu to change all occurrences of '\' to 'g.'
  104. Aha, you say. How do I get the 'g' into the Change To box? Here's how. Open Key  Caps and press the 'g' on the Keycaps keyboard. Now highlight and Copy the 'g' from the text box above the keyboard. Now open Change and Paste the 'g' into the Change To box.
  105. And stop drinking Coke and eating crackers around your keyboard.
  106.  
  107. LaserWriter
  108.  
  109. Envelopes Made Easy. We all know how the LaserWriter doesn't like to print too close to the edge of the sheet, which make a decent return address on an envelope almost impossible. 
  110. Here comes Fast Forms, which lets you print way up into the upper left corner. So close you will have to adjust the template to move it further down and in.
  111.  
  112. MacDraft
  113.  
  114. Beautiful Printouts. Double the scale of your drawing in MacDraft in the Layout menu. Print it out at 50% for beautiful printouts. Use a copy of your original for this, just in case…
  115.  
  116. Pagemaker 2.0a
  117.  
  118. Justifying Headlines in Pagemaker. In Pagemaker 2.0 you can make the last line of a multi-line headline justify. Here's how.
  119. • Type the entire head with no carriage returns
  120. • Select the headline and go to the Paragraph menu item
  121. • Turn off automatic hyphenation and say OK.
  122. • Choose Justify
  123. • Place a space after the last word. Add XXX's following the space until they wrap to the next line
  124. • Pull up the text block handle to hide the row of XXX's.
  125. The headline is now fully justified.
  126.  
  127. For Math Cripples (Like Me). To figure out the decimal equivalent of a fraction in Pagemaker 2.0, go to the Indents/Tabs menu. Click on the ruler at the fraction value you want to convert. The decimal equivalent will appear in the right side of the dialog box. (Thanks, Linda Spaulding, MacValley Voice, Burbank MUG, Calif.)
  128.  
  129. Word 3.01
  130.  
  131. Real Mac Users Don't… Don't use the default tabs (every half inch) in Word 3.01 if you are going to change fonts, sizes or styles, or if you are going to take the material into a page layout program. Pull down the Paragraph menu and set some "real" tabs. 
  132.  
  133.  
  134.  
  135.